- /* simcvdec.cpp by K.Tsuru */
- // function ID = 416 BRADIX
- /**********************************************
- SInteger class's member
- It provides the BRADIX --> DRADIX conversion.
- The divide radix conversion is used.
- In special case it is equivalent to the binary splitting method.
- **********************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SLong SInteger::ConvToDec() const{
- // Head()+1 =< iNconvDecMaxFig : NConvToDec() is faster than DConvTodec()
- SLong result;
- if(Head()+1 <= iNconvDecMaxFig) result = NConvToDec();
- else result = DConvToDec();
-
- return result;
- }
simcvdec.cpp : last modifiled at 2016/09/04 14:21:42(616 bytes)
created at 2016/04/25 14:53:17
The creation time of this html file is 2017/10/25 11:09:45 (Wed Oct 25 11:09:45 2017).